home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 109
/
Vol 109.iso
/
games
/
chick000.swf
/
scripts
/
frame_11
/
DoAction.as
Wrap
Text File
|
2008-11-12
|
451b
|
21 lines
if(_root.score < 10 and _root.score > 0)
{
_root.score = "00000" + _root.score;
}
if(_root.score < 100 and _root.score > 9)
{
_root.score = "0000" + _root.score;
}
if(_root.score < 1000 and _root.score > 99)
{
_root.score = "000" + _root.score;
}
if(_root.score < 10000 and _root.score > 999)
{
_root.score = "00" + _root.score;
}
if(_root.score < 100000 and _root.score > 9999)
{
_root.score = "0" + _root.score;
}